projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8aa89bc
)
Sven Joachim <svenjoac at gmx.de>
author
Glenn Morris
<rgm@gnu.org>
Wed, 8 Oct 2008 07:42:58 +0000
(07:42 +0000)
committer
Glenn Morris
<rgm@gnu.org>
Wed, 8 Oct 2008 07:42:58 +0000
(07:42 +0000)
For clarity, explicitly require cl.
lisp/ChangeLog
patch
|
blob
|
history
lisp/eshell/em-cmpl.el
patch
|
blob
|
history
lisp/eshell/em-hist.el
patch
|
blob
|
history
lisp/eshell/em-ls.el
patch
|
blob
|
history
lisp/eshell/esh-cmd.el
patch
|
blob
|
history
lisp/eshell/esh-ext.el
patch
|
blob
|
history
lisp/eshell/esh-io.el
patch
|
blob
|
history
diff --git
a/lisp/ChangeLog
b/lisp/ChangeLog
index 3bb3956a6c1eebbe22fa315c06fd8b01fc1c2112..9250bbdea8b4ff8b5f760a3ff39b315586e50adf 100644
(file)
--- a/
lisp/ChangeLog
+++ b/
lisp/ChangeLog
@@
-1,3
+1,9
@@
+2008-10-08 Sven Joachim <svenjoac@gmx.de>
+
+ * eshell/em-cmpl.el, eshell/em-hist.el, eshell/em-ls.el:
+ * eshell/esh-cmd.el, eshell/esh-ext.el, eshell/esh-io.el:
+ For clarity, explictly require cl.
+
2008-10-08 Michael Olson <mwolson@gnu.org>
* ibuffer.el (ibuffer-shrink-to-fit): Force redisplay, so that we
diff --git
a/lisp/eshell/em-cmpl.el
b/lisp/eshell/em-cmpl.el
index a5dfe1424c9e2280c5394c951c59df63246de14d..22586618c9383dfa5559be8a2c6957927a7ea39a 100644
(file)
--- a/
lisp/eshell/em-cmpl.el
+++ b/
lisp/eshell/em-cmpl.el
@@
-71,6
+71,7
@@
;;; Code:
(eval-when-compile
+ (require 'cl)
(require 'eshell))
(require 'esh-util)
diff --git
a/lisp/eshell/em-hist.el
b/lisp/eshell/em-hist.el
index b9913336547c63f7a2a47bf79c5db432094385db..e672d6049f376000078445a11bdabcb9aafdeb7d 100644
(file)
--- a/
lisp/eshell/em-hist.el
+++ b/
lisp/eshell/em-hist.el
@@
-55,6
+55,9
@@
;;; Code:
+(eval-when-compile
+ (require 'cl))
+
(require 'ring)
(require 'esh-opt)
(require 'em-pred)
diff --git
a/lisp/eshell/em-ls.el
b/lisp/eshell/em-ls.el
index eb3389ce7cfa025647a5f2c140218092c2aa8f60..8c74b30f942a4b56daa4854caf2fa9320d6cdace 100644
(file)
--- a/
lisp/eshell/em-ls.el
+++ b/
lisp/eshell/em-ls.el
@@
-27,7
+27,9
@@
;;; Code:
-(eval-when-compile (require 'eshell))
+(eval-when-compile
+ (require 'cl)
+ (require 'eshell))
(require 'esh-util)
(require 'esh-opt)
diff --git
a/lisp/eshell/esh-cmd.el
b/lisp/eshell/esh-cmd.el
index 82677aec8aabdfae0ed91e12bf270d49db72e363..2e47fd718c24d3c1e62e99894a24d5f6ae553805 100644
(file)
--- a/
lisp/eshell/esh-cmd.el
+++ b/
lisp/eshell/esh-cmd.el
@@
-109,6
+109,7
@@
(require 'esh-ext)
(eval-when-compile
+ (require 'cl)
(require 'pcomplete))
diff --git
a/lisp/eshell/esh-ext.el
b/lisp/eshell/esh-ext.el
index 6013093f0df3070555ff85126fed1704caccda68..ad7d35dfa8c7c2b42050f869f8b6aaeefca8e249 100644
(file)
--- a/
lisp/eshell/esh-ext.el
+++ b/
lisp/eshell/esh-ext.el
@@
-33,6
+33,7
@@
(provide 'esh-ext)
(eval-when-compile
+ (require 'cl)
(require 'esh-cmd))
(require 'esh-util)
diff --git
a/lisp/eshell/esh-io.el
b/lisp/eshell/esh-io.el
index 052301013c2d5860f41ec953551870f2e8b7f1bd..205207c8394cce3949bc7bc7fe8bbef4d858e318 100644
(file)
--- a/
lisp/eshell/esh-io.el
+++ b/
lisp/eshell/esh-io.el
@@
-57,7
+57,9
@@
(provide 'esh-io)
-(eval-when-compile (require 'eshell))
+(eval-when-compile
+ (require 'cl)
+ (require 'eshell))
(defgroup eshell-io nil
"Eshell's I/O management code provides a scheme for treating many